home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #12
/
Amiga Plus CD - 2002 - No. 12.iso
/
Tools
/
Development
/
source-highlight-1.6.1
/
tests
/
test.java
< prev
next >
Wrap
Text File
|
2002-11-17
|
1KB
|
38 lines
/*
This is a classical Hello program
to test source-highlight with Java programs.
to have an html translation type
source-highlight -s java -f html --input Hello.java --output Hello.html
source-highlight -s java -f html < Hello.java > Hello.html
or type source-highlight --help for the list of options
written by
Lorenzo Bettini <bettini@gnu.org>
http://w3.newnet.it/bettini
http://www.gnu.org/software/src-highlite
*/
import java.io.* ;
public class Hello {
int foo = 1998 ;
int hex_foo = 0xCAFEBABE;
boolean b ;
Integer i = null ;
char c = '\'', d = 'n', e = '\\' ;
String xml = "<tag attr=\"value\">ä</tag>", foo2 = "\\" ;
public static void main( String args[] ) {
// just some greetings ;-) /*
System.out.println( "Hello from java2html :-)" ) ;
System.out.println( "\tby Lorenzo Bettini" ) ;
System.out.println( "\tbettini@gnu.org" ) ;
if (argc > 0)
String param = argc[0];
//System.out.println( "bye bye... :-D" ) ; // see you soon
}
}